# HSV C++ Makefile

CXX = clang++
CXXFLAGS = -std=c++17 -O2 -Wall -Wextra

all: test

test: test.cpp hsv.hpp
	$(CXX) $(CXXFLAGS) -o test test.cpp

run: test
	./test

clean:
	rm -f test

.PHONY: all run clean
